home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / security / crack_4.1-tar / Scripts / saltcount < prev    next >
Encoding:
Text File  |  1992-06-25  |  627 b   |  29 lines

  1. #!/bin/sh
  2.  
  3. ###
  4. # This program is copyright Alec Muffett 1991, and is provided as part of
  5. # the Crack v4.0 Password Cracking package.  The author disclaims all
  6. # responsibility or liability with respect to it's usage or its effect
  7. # upon hardware or computer systems, and maintains copyright as set out in
  8. # the "LICENCE" document which accompanies distributions of Crack v4.0 and
  9. # upwards. So there...
  10. ###
  11.  
  12. ###
  13. # Count the number of individual salts in do_join format...
  14. ###
  15.  
  16. awk -F: '
  17. BEGIN {
  18.     i = 0;        # Just in case there is no input
  19. }
  20. substr($3, 1, 2) != last {
  21.     i++;
  22.     last = substr($3, 1, 2);
  23. }
  24. END {
  25.     print i;
  26. }'
  27.  
  28. exit 0
  29.